home *** CD-ROM | disk | FTP | other *** search
/ Amiga Games Extra 1996 September / Amiga Games Extra CD-ROM 9-1996.iso / userbox / publicdomain / typeface / source / dmakefile < prev    next >
Makefile  |  1996-05-04  |  238b  |  10 lines

  1. SRCS = typeface.c char.c error.c fontio.c gadget.c node.c text.c locale.c
  2. OBJS = $(SRCS:"*.c":"*.o")
  3. EXE  = Typeface
  4.  
  5. $(EXE) : $(OBJS)
  6.     dcc %(right) -o %(left) -l bgui -l textfield
  7.  
  8. $(OBJS) : $(SRCS)
  9.     dcc -c -mi %(right) -o %(left)
  10.